Upgrade minimum standards for C and C++#5212
Open
Emanuele Sabellico (emasab) wants to merge 1 commit into
Open
Upgrade minimum standards for C and C++#5212Emanuele Sabellico (emasab) wants to merge 1 commit into
Emanuele Sabellico (emasab) wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the minimum C and C++ standards from gnu90 to C99 and introduces C++98 as the minimum C++ standard. The change is motivated by the fact that C99 is fully implemented in Visual Studio 2013+ and is the default in GCC 5.1.0+, making it a reasonable baseline for modern development.
- Updated minimum C standard from gnu90 to C99
- Introduced C++98 as the minimum C++ standard
- Updated CI configuration to test against the new standards
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| CONTRIBUTING.md | Updated documentation to reflect new C99/C++98 minimum standards and removed outdated gnu90 limitations |
| .semaphore/semaphore.yml | Updated CI CFLAGS to use c99 and added CXXFLAGS for c++98 testing |
| .semaphore/semaphore-integration.yml | Updated integration CI with same compiler flag changes |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
🎉 All Contributor License Agreements have been signed. Ready to merge. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
C99 and C++98 are the new minimum standards.
Visual Studio 2015 is still supported and fully implements only C99.